PDF Plugin for Xojo

Page.MoveTo Method (console safe)

Starts a new path and sets the starting point of the path. If you are already in path mode then a new subpath is created.

MoveTo(
   x as Single,
   y as Single)

Parameters

x
The x coordinate
y
The y coordinate (Remember in PDF then y point zero is at bottom of the page)

Remarks

Calling this method will put the current GraphicsMode to PATH_OBJECT.

Your application can call this method when the GraphicsMode is either PATH_OBJECT or PAGE_DESCRIPTION.

See Also

Page Class